home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / c-convert2.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  11KB  |  362 lines

  1. /* Language-indepednent node constructors for parse phase of GNU compiler.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY.  No author or distributor
  8. accepts responsibility to anyone for the consequences of using it
  9. or for whether it serves any particular purpose or works at all,
  10. unless he says so in writing.  Refer to the GNU CC General Public
  11. License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. GNU CC, but only under the conditions described in the
  15. GNU CC General Public License.   A copy of this license is
  16. supposed to have been given to you along with GNU CC so you
  17. can know your rights and responsibilities.  It should be in a
  18. file named COPYING.  Among other things, the copyright notice
  19. and this notice must be preserved on all copies.  */
  20.  
  21.  
  22. /* This file contains the functions for converting C expressions
  23.    to different data types.  */
  24.  
  25. #include "config.h"
  26. #include "tree.h"
  27.  
  28. /* Subroutines of `convert'.  */
  29.  
  30. /* Change of width--truncation and extension of integers or reals--
  31.    is represented with NOP_EXPR.  Proper functioning of many things
  32.    assumes that no other conversions can be NOP_EXPRs.
  33.  
  34.    Conversion between integer and pointer is represented with CONVERT_EXPR.
  35.    Converting integer to real uses FLOAT_EXPR
  36.    and real to integer uses FIX_TRUNC_EXPR.  */
  37.  
  38. static tree
  39. convert_to_pointer (type, expr)
  40.      tree type, expr;
  41. {
  42.   register tree intype = TREE_TYPE (expr);
  43.   register enum tree_code form = TREE_CODE (intype);
  44.   
  45.   if (integer_zerop (expr))
  46.     {
  47.       if (type == TREE_TYPE (null_pointer_node))
  48.     return null_pointer_node;
  49.       expr = build_int_2 (0, 0);
  50.       TREE_TYPE (expr) = type;
  51.       return expr;
  52.     }
  53.  
  54.   if (form == POINTER_TYPE)
  55.     return build (NOP_EXPR, type, expr);
  56.  
  57.  
  58.   if (form == INTEGER_TYPE || form == ENUMERAL_TYPE)
  59.     {
  60.       if (type_precision (intype) == POINTER_SIZE)
  61.     return build (CONVERT_EXPR, type, expr);
  62.       return convert_to_pointer (type,
  63.                  convert (type_for_size (POINTER_SIZE, 0),
  64.                       expr));
  65.     }
  66.  
  67.   error ("cannot convert to a pointer type");
  68.  
  69.   return null_pointer_node;
  70. }
  71.  
  72. /* The result of this is always supposed to be a newly created tree node
  73.    not in use in any existing structure.  */
  74.  
  75. static tree
  76. convert_to_integer (type, expr)
  77.      tree type, expr;
  78. {
  79.   register tree intype = TREE_TYPE (expr);
  80.   register enum tree_code form = TREE_CODE (intype);
  81.   extern tree build_binary_op_nodefault ();
  82.   extern tree build_unary_op ();
  83.  
  84.   if (form == POINTER_TYPE)
  85.     {
  86.       if (integer_zerop (expr))
  87.     expr = integer_zero_node;
  88.       else
  89.     expr = fold (build (CONVERT_EXPR,
  90.                 type_for_size (POINTER_SIZE, 0), expr));
  91.       intype = TREE_TYPE (expr);
  92.       form = TREE_CODE (intype);
  93.       if (intype == type)
  94.     return expr;
  95.     }
  96.  
  97.   if (form == INTEGER_TYPE || form == ENUMERAL_TYPE)
  98.     {
  99.       register int outprec = TYPE_PRECISION (type);
  100.       register int inprec = TYPE_PRECISION (intype);
  101.       register enum tree_code ex_form = TREE_CODE (expr);
  102.  
  103.       if (outprec >= inprec)
  104.     return build (NOP_EXPR, type, expr);
  105.  
  106. /* Here detect when we can distribute the truncation down past some arithmetic.
  107.    For example, if adding two longs and converting to an int,
  108.    we can equally well convert both to ints and then add.
  109.    For the operations handled here, such truncation distribution
  110.    is always safe.
  111.    It is desirable in these cases:
  112.    1) when truncating down to full-word from a larger size
  113.    2) when truncating takes no work.
  114.    3) when at least one operand of the arithmetic has been extended
  115.    (as by C's default conversions).  In this case we need two conversions
  116.    if we do the arithmetic as already requested, so we might as well
  117.    truncate both and then combine.  Perhaps that way we need only one.
  118.  
  119.    Note that in general we cannot do the arithmetic in a type
  120.    shorter than the desired result of conversion, even if the operands
  121.    are both extended from a shorter type, because they might overflow
  122.    if combined in that type.  The exceptions to this--the times when
  123.    two narrow values can be combined in their narrow type even to
  124.    make a wider result--are handled by "shorten" in build_binary_op.  */
  125.  
  126.       switch (ex_form)
  127.     {
  128.     case RSHIFT_EXPR:
  129.       /* We can pass truncation down through right shifting
  130.          when the shift count is a negative constant.  */
  131.       if (TREE_CODE (TREE_OPERAND (expr, 1)) != INTEGER_CST
  132.           || TREE_INT_CST_LOW (TREE_OPERAND (expr, 1)) > 0)
  133.         break;
  134.       goto trunc1;
  135.  
  136.     case LSHIFT_EXPR:
  137.       /* We can pass truncation down through left shifting
  138.          when the shift count is a positive constant.  */
  139.       if (TREE_CODE (TREE_OPERAND (expr, 1)) != INTEGER_CST
  140.           || TREE_INT_CST_LOW (TREE_OPERAND (expr, 1)) < 0)
  141.         break;
  142.       /* In this case, shifting is like multiplication.  */
  143.  
  144.     case PLUS_EXPR:
  145.     case MINUS_EXPR:
  146.     case MULT_EXPR:
  147.     case MAX_EXPR:
  148.     case MIN_EXPR:
  149.     case BIT_AND_EXPR:
  150.     case BIT_IOR_EXPR:
  151.     case BIT_XOR_EXPR:
  152.     case BIT_ANDTC_EXPR:
  153.     trunc1:
  154.       {
  155.         tree arg0 = get_unwidened (TREE_OPERAND (expr, 0), type);
  156.         tree arg1 = get_unwidened (TREE_OPERAND (expr, 1), type);
  157.  
  158.         if (outprec >= BITS_PER_WORD
  159.         || TRULY_NOOP_TRUNCATION (outprec, inprec)
  160.         || inprec > TYPE_PRECISION (TREE_TYPE (arg0))
  161.         || inprec > TYPE_PRECISION (TREE_TYPE (arg1)))
  162.           {
  163.         /* Do the arithmetic in type TYPEX,
  164.            then convert result to TYPE.  */
  165.         register tree typex = type;
  166.  
  167.         /* Can't do arithmetic in enumeral types
  168.            so use an integer type that will hold the values.  */
  169.         if (TREE_CODE (typex) == ENUMERAL_TYPE)
  170.           typex = type_for_size (TYPE_PRECISION (typex),
  171.                      TREE_UNSIGNED (typex));
  172.  
  173.         /* But now perhaps TYPEX is as wide as INPREC.
  174.            In that case, do nothing special here.
  175.            (Otherwise would recurse infinitely in convert.  */
  176.         if (TYPE_PRECISION (typex) != inprec)
  177.           {
  178.             /* Don't do unsigned arithmetic where signed was wanted,
  179.                or vice versa.  */
  180.             typex = (TREE_UNSIGNED (TREE_TYPE (expr))
  181.                  ? unsigned_type (typex) : signed_type (typex));
  182.             return convert (type,
  183.                     build_binary_op_nodefault (ex_form,
  184.                                    convert (typex, arg0),
  185.                                    convert (typex, arg1)));
  186.           }
  187.           }
  188.       }
  189.       break;
  190.  
  191.     case EQ_EXPR:
  192.     case NE_EXPR:
  193.     case GT_EXPR:
  194.     case GE_EXPR:
  195.     case LT_EXPR:
  196.     case LE_EXPR:
  197.     case TRUTH_AND_EXPR:
  198.     case TRUTH_OR_EXPR:
  199.     case TRUTH_NOT_EXPR:
  200.       /* If we want result of comparison converted to a byte,
  201.          we can just regard it as a byte, since it is 0 or 1.  */
  202.       TREE_TYPE (expr) = type;
  203.       return expr;
  204.  
  205.     case NEGATE_EXPR:
  206.     case BIT_NOT_EXPR:
  207.     case ABS_EXPR:
  208.       {
  209.         register tree typex = type;
  210.  
  211.         /* Can't do arithmetic in enumeral types
  212.            so use an integer type that will hold the values.  */
  213.         if (TREE_CODE (typex) == ENUMERAL_TYPE)
  214.           typex = type_for_size (TYPE_PRECISION (typex),
  215.                      TREE_UNSIGNED (typex));
  216.  
  217.         /* But now perhaps TYPEX is as wide as INPREC.
  218.            In that case, do nothing special here.
  219.            (Otherwise would recurse infinitely in convert.  */
  220.         if (TYPE_PRECISION (typex) != inprec)
  221.           {
  222.         /* Don't do unsigned arithmetic where signed was wanted,
  223.            or vice versa.  */
  224.         typex = (TREE_UNSIGNED (TREE_TYPE (expr))
  225.              ? unsigned_type (typex) : signed_type (typex));
  226.         return convert (type,
  227.                 build_unary_op (ex_form,
  228.                         convert (typex, TREE_OPERAND (expr, 0)),
  229.                         1));
  230.           }
  231.       }
  232.  
  233.     case NOP_EXPR:
  234.       /* If truncating after truncating, might as well do all at once.
  235.          If truncating after extending, we may get rid of wasted work.  */
  236.       return convert (type, get_unwidened (TREE_OPERAND (expr, 0), type));
  237.  
  238.     case COND_EXPR:
  239.       /* Can treat the two alternative values like the operands
  240.          of an arithmetic expression.  */
  241.       {
  242.         tree arg1 = get_unwidened (TREE_OPERAND (expr, 1), type);
  243.         tree arg2 = get_unwidened (TREE_OPERAND (expr, 2), type);
  244.  
  245.         if (outprec >= BITS_PER_WORD
  246.         || TRULY_NOOP_TRUNCATION (outprec, inprec)
  247.         || inprec > TYPE_PRECISION (TREE_TYPE (arg1))
  248.         || inprec > TYPE_PRECISION (TREE_TYPE (arg2)))
  249.           {
  250.         /* Do the arithmetic in type TYPEX,
  251.            then convert result to TYPE.  */
  252.         register tree typex = type;
  253.  
  254.         /* Can't do arithmetic in enumeral types
  255.            so use an integer type that will hold the values.  */
  256.         if (TREE_CODE (typex) == ENUMERAL_TYPE)
  257.           typex = type_for_size (TYPE_PRECISION (typex),
  258.                      TREE_UNSIGNED (typex));
  259.  
  260.         /* But now perhaps TYPEX is as wide as INPREC.
  261.            In that case, do nothing special here.
  262.            (Otherwise would recurse infinitely in convert.  */
  263.         if (TYPE_PRECISION (typex) != inprec)
  264.           {
  265.             /* Don't do unsigned arithmetic where signed was wanted,
  266.                or vice versa.  */
  267.             typex = (TREE_UNSIGNED (TREE_TYPE (expr))
  268.                  ? unsigned_type (typex) : signed_type (typex));
  269.             return convert (type,
  270.                     build (COND_EXPR, typex,
  271.                        TREE_OPERAND (expr, 0),
  272.                        convert (typex, arg1),
  273.                        convert (typex, arg2)));
  274.           }
  275.           }
  276.       }
  277.  
  278.     }
  279.  
  280.       return build (NOP_EXPR, type, expr);
  281.     }
  282.  
  283.   if (form == REAL_TYPE)
  284.     return build (FIX_TRUNC_EXPR, type, expr);
  285.  
  286.   error ("aggregate value used where an integer was expected");
  287.  
  288.   {
  289.     register tree tem = build_int_2 (0, 0);
  290.     TREE_TYPE (tem) = type;
  291.     return tem;
  292.   }
  293. }
  294.  
  295. static tree
  296. convert_to_real (type, expr)
  297.      tree type, expr;
  298. {
  299.   register enum tree_code form = TREE_CODE (TREE_TYPE (expr));
  300.   extern int flag_float_store;
  301.  
  302.   if (form == REAL_TYPE)
  303.     return build (flag_float_store ? CONVERT_EXPR : NOP_EXPR,
  304.           type, expr);
  305.  
  306.   if (form == INTEGER_TYPE || form == ENUMERAL_TYPE)
  307.     return build (FLOAT_EXPR, type, expr);
  308.  
  309.   if (form == POINTER_TYPE)
  310.     error ("pointer value used where a float was expected");
  311.   else
  312.     error ("aggregate value used where a float was expected");
  313.  
  314.   {
  315.     register tree tem = make_node (REAL_CST);
  316.     TREE_TYPE (tem) = type;
  317.     TREE_REAL_CST (tem) = 0;
  318.     return tem;
  319.   }
  320. }
  321.  
  322. /* Create an expression whose value is that of EXPR,
  323.    converted to type TYPE.  The TREE_TYPE of the value
  324.    is always TYPE.  This function implements all reasonable
  325.    conversions; callers should filter out those that are
  326.    not permitted by the language being compiled.  */
  327.  
  328. tree
  329. convert (type, expr)
  330.      tree type, expr;
  331. {
  332.   register tree e = expr;
  333.   register enum tree_code code = TREE_CODE (type);
  334.  
  335.   if (type == TREE_TYPE (expr) || TREE_CODE (expr) == ERROR_MARK)
  336.     return expr;
  337.   if (TREE_CODE (TREE_TYPE (expr)) == ERROR_MARK)
  338.     return error_mark_node;
  339.   if (TREE_CODE (TREE_TYPE (expr)) == VOID_TYPE)
  340.     {
  341.       error ("void value not ignored as it ought to be");
  342.       return error_mark_node;
  343.     }
  344.   if (code == VOID_TYPE)
  345.     return build (CONVERT_EXPR, type, e);
  346. #if 0
  347.   /* This is incorrect.  A truncation can't be stripped this way.
  348.      Extensions will be stripped by the use of get_unwidened.  */
  349.   if (TREE_CODE (expr) == NOP_EXPR)
  350.     return convert (type, TREE_OPERAND (expr, 0));
  351. #endif
  352.   if (code == INTEGER_TYPE || code == ENUMERAL_TYPE)
  353.     return fold (convert_to_integer (type, e));
  354.   if (code == POINTER_TYPE)
  355.     return fold (convert_to_pointer (type, e));
  356.   if (code == REAL_TYPE)
  357.     return fold (convert_to_real (type, e));
  358.  
  359.   error ("conversion to non-scalar type requested");
  360.   return error_mark_node;
  361. }
  362.